From: Ian Campbell Date: Mon, 14 May 2012 15:34:29 +0000 (+0100) Subject: tools: xen-lowmemd is x86 specific, only install for x86 X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~8470 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=8a54dd6247fc86bef027851063c00c361f6627eb;p=xen.git tools: xen-lowmemd is x86 specific, only install for x86 It is TARGETS-$(CONFIG_X86) so it should be INSTALL_SBIN-$(CONFIG_X86) too Signed-off-by: Ian Campbell Committed-by: Ian Jackson --- diff --git a/tools/misc/Makefile b/tools/misc/Makefile index 834ffe7f80..2e763cc429 100644 --- a/tools/misc/Makefile +++ b/tools/misc/Makefile @@ -22,8 +22,8 @@ INSTALL_BIN-y := xencons xenpvnetboot INSTALL_BIN-$(CONFIG_X86) += xen-detect INSTALL_BIN := $(INSTALL_BIN-y) -INSTALL_SBIN-y := xm xen-bugtool xen-python-path xend xenperf xsview xenpm xen-tmem-list-parse gtraceview gtracestat xenlockprof xenwatchdogd xen-ringwatch xen-lowmemd -INSTALL_SBIN-$(CONFIG_X86) += xen-hvmctx xen-hvmcrash +INSTALL_SBIN-y := xm xen-bugtool xen-python-path xend xenperf xsview xenpm xen-tmem-list-parse gtraceview gtracestat xenlockprof xenwatchdogd xen-ringwatch +INSTALL_SBIN-$(CONFIG_X86) += xen-hvmctx xen-hvmcrash xen-lowmemd INSTALL_SBIN-$(CONFIG_MIGRATE) += xen-hptool INSTALL_SBIN := $(INSTALL_SBIN-y)